home *** CD-ROM | disk | FTP | other *** search
/ The 640 MEG Shareware Studio 2 / The 640 Meg Shareware Studio CD-ROM Volume II (Data Express)(1993).ISO / os2 / te2_120.zip / MODEM.INC < prev    next >
Text File  |  1992-06-15  |  1KB  |  37 lines

  1. ; Generic 2400 Baud Hayes clone
  2. ;
  3. ; DIP SWITCH SETTINGS: Refer to your modem manual as to the location
  4. ;                      of your switches and the function of each.  You
  5. ;                      should be sure to set the modem so that it does
  6. ;                      NOT force Carrier Detect (this is usually
  7. ;                      switch #6).  You should also set the modem so
  8. ;                      that DTR is NOT forced on (usually switch #1).
  9. ;
  10. ; NOTES: If your modem uses NRAM to store the configuration, you should
  11. ;        use GEN2400S.INC instead.
  12.  
  13. Baud          2400
  14. Parity        N
  15. WordLen       8
  16. StopBits      1
  17.  
  18. XonXoff       BOTH
  19. CtsRts        NEITHER
  20. MatchBaud     TRUE
  21.  
  22. ModemInitStrg ATE1Q0M1X4V1^M
  23. ModemDialStrg ATDT
  24. ModemDialSufx ^M
  25. ModemHangStrg ~~~+++~~~ATH0^M
  26. DTRHangup     TRUE
  27.  
  28. Connect       CONNECT^M,300
  29. Connect       CONNECT_1200,1200
  30. Connect       CONNECT_2400,2400
  31.  
  32. NoConnect     NO_DIALTONE
  33. NoConnect     NO_CARRIER
  34. NoConnect     BUSY
  35. NoConnect     VOICE
  36.  
  37.